home *** CD-ROM | disk | FTP | other *** search
- Program TestVESA;
- Uses VESA, Crt;
-
- (* Just a very simple test of the unit that draws a box and a circle *)
- (* it just illustrates how to use the unit! *)
- Begin
- FadeCurs;
- ChangeMode ($101); (* 640x480x256 *)
- LoadDefaultPalette;
- ClearScreen (LightGray);
- FillRect (0, 0, 300, 300, Red);
- Circle (300, 200, 100, Yellow);
- Line (100, 200, 300, 400, Blue);
- Readkey;
- End.